home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 5 (Internal Edition) / Apple R&P Lib Internal v5.0.iso / 6-Developer Demos / Developer Demos-Ed. / Macintosh School® CD-ROM Demo / Macintosh SchoolÆ CD-ROM Demo / card_85005.txt < prev    next >
Text File  |  1990-08-14  |  5KB  |  240 lines

  1. -- card: 85005 from stack: in
  2. -- bmap block id: 85460
  3. -- flags: 4000
  4. -- background id: 69011
  5. -- name: Today's Attendance…
  6. ----- HyperTalk script -----
  7. on openCard
  8.   global buttonName, buttonList, buttonID
  9.   put 2 into buttonID
  10.   put the long date into field date
  11.   set hilite of background button id buttonName to false
  12.   repeat with index = 1 to the number of lines of buttonList
  13.     set hilite of background button id line index of buttonList to false
  14.   end repeat
  15. end openCard
  16.  
  17. on closeCard
  18.   global buttonName, buttonList, buttonID
  19.   set hilite of button id buttonID to false
  20.   set hilite of button id 2 to true
  21.   set hilite of background button id buttonName to true
  22.   repeat with index = 1 to the number of lines of buttonList
  23.     set hilite of background button id line index of buttonList to true
  24.   end repeat
  25. end closeCard
  26.  
  27. on mouseUp
  28.   global buttonID
  29.   if id of target is not buttonID then
  30.     set hilite of button id buttonID to false
  31.     set hilite of target to true
  32.     put id of target into buttonID
  33.   end if
  34. end mouseUp
  35.  
  36.  
  37. -- part 1 (button)
  38. -- low flags: 00
  39. -- high flags: 0000
  40. -- rect: left=0 top=0 right=342 bottom=512
  41. -- title width / last selected line: 0
  42. -- icon id / first selected line: 0 / 0
  43. -- text alignment: 1
  44. -- font id: 0
  45. -- text size: 12
  46. -- style flags: 0
  47. -- line height: 16
  48. -- part name: 
  49.  
  50.  
  51. -- part 2 (button)
  52. -- low flags: 00
  53. -- high flags: C006
  54. -- rect: left=144 top=121 right=137 bottom=359
  55. -- title width / last selected line: 0
  56. -- icon id / first selected line: 0 / 0
  57. -- text alignment: 1
  58. -- font id: 0
  59. -- text size: 12
  60. -- style flags: 0
  61. -- line height: 16
  62. -- part name: Teacher’s report (homeroom)
  63.  
  64.  
  65. -- part 3 (button)
  66. -- low flags: 00
  67. -- high flags: 8006
  68. -- rect: left=144 top=137 right=153 bottom=359
  69. -- title width / last selected line: 0
  70. -- icon id / first selected line: 0 / 0
  71. -- text alignment: 1
  72. -- font id: 0
  73. -- text size: 12
  74. -- style flags: 0
  75. -- line height: 16
  76. -- part name: Teacher’s report (alphabetic)
  77.  
  78.  
  79. -- part 4 (button)
  80. -- low flags: 00
  81. -- high flags: 8006
  82. -- rect: left=144 top=153 right=169 bottom=359
  83. -- title width / last selected line: 0
  84. -- icon id / first selected line: 0 / 0
  85. -- text alignment: 1
  86. -- font id: 0
  87. -- text size: 12
  88. -- style flags: 0
  89. -- line height: 16
  90. -- part name: Absent student’s ph. # list
  91.  
  92.  
  93. -- part 5 (button)
  94. -- low flags: 00
  95. -- high flags: 8006
  96. -- rect: left=144 top=169 right=185 bottom=359
  97. -- title width / last selected line: 0
  98. -- icon id / first selected line: 0 / 0
  99. -- text alignment: 1
  100. -- font id: 0
  101. -- text size: 12
  102. -- style flags: 0
  103. -- line height: 16
  104. -- part name: Daily attendance list
  105.  
  106.  
  107. -- part 6 (button)
  108. -- low flags: 00
  109. -- high flags: 8006
  110. -- rect: left=144 top=185 right=201 bottom=359
  111. -- title width / last selected line: 0
  112. -- icon id / first selected line: 0 / 0
  113. -- text alignment: 1
  114. -- font id: 0
  115. -- text size: 12
  116. -- style flags: 0
  117. -- line height: 16
  118. -- part name: Daily List with comments
  119.  
  120.  
  121. -- part 7 (button)
  122. -- low flags: 00
  123. -- high flags: 8006
  124. -- rect: left=144 top=201 right=217 bottom=359
  125. -- title width / last selected line: 0
  126. -- icon id / first selected line: 0 / 0
  127. -- text alignment: 1
  128. -- font id: 0
  129. -- text size: 12
  130. -- style flags: 0
  131. -- line height: 16
  132. -- part name: Today’s statistics
  133.  
  134.  
  135. -- part 8 (button)
  136. -- low flags: 00
  137. -- high flags: 2006
  138. -- rect: left=144 top=217 right=233 bottom=359
  139. -- title width / last selected line: 0
  140. -- icon id / first selected line: 0 / 0
  141. -- text alignment: 1
  142. -- font id: 0
  143. -- text size: 12
  144. -- style flags: 0
  145. -- line height: 16
  146. -- part name: Today’s birthdays
  147.  
  148.  
  149. -- part 9 (button)
  150. -- low flags: 00
  151. -- high flags: 2000
  152. -- rect: left=165 top=287 right=305 bottom=223
  153. -- title width / last selected line: 0
  154. -- icon id / first selected line: 0 / 0
  155. -- text alignment: 1
  156. -- font id: 0
  157. -- text size: 12
  158. -- style flags: 0
  159. -- line height: 16
  160. -- part name: Print
  161. ----- HyperTalk script -----
  162. on mouseUp
  163.   global buttonID
  164.   lock screen
  165.   go to card short name of button id buttonID of this background
  166.   unlock screen
  167. end mouseUp
  168.  
  169.  
  170.  
  171. -- part 10 (button)
  172. -- low flags: 00
  173. -- high flags: 2000
  174. -- rect: left=277 top=287 right=305 bottom=335
  175. -- title width / last selected line: 0
  176. -- icon id / first selected line: 0 / 0
  177. -- text alignment: 1
  178. -- font id: 0
  179. -- text size: 12
  180. -- style flags: 0
  181. -- line height: 16
  182. -- part name: Cancel
  183. ----- HyperTalk script -----
  184. on mouseUp
  185.   lock screen
  186.   pop card
  187.   unlock screen
  188. end mouseUp
  189.  
  190.  
  191.  
  192. -- part contents for background part 28
  193. ----- text -----
  194. Abrosimoff, Mich‚Ķ
  195. Adams, Bryan
  196. Alexander, Rick
  197. Alexander, Susan
  198. Allsop, Blair M.
  199. Azimov, Isaac
  200. Barisoff, Larissa
  201. Bunyan, Paul
  202. Burnyeat, Grant
  203. Caldwell, Brian
  204.  
  205.  
  206.  
  207. -- part contents for background part 29
  208. ----- text -----
  209. 47
  210. 80
  211. 53
  212. 54
  213. 52
  214. 102
  215. 48
  216. 13
  217. 94
  218. 93
  219.  
  220. -- part contents for background part 30
  221. ----- text -----
  222. Present
  223. Present
  224. Present
  225. Present
  226. Present
  227. Present
  228. Present
  229. Present
  230. Present
  231. Present
  232.  
  233.  
  234. -- part contents for background part 33
  235. ----- text -----
  236. 0 students selected
  237.  
  238. -- part contents for background part 31
  239. ----- text -----
  240. Monday, September 4, 1989